-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MDS] Adds datasource filter for version decoupling #2051
[MDS] Adds datasource filter for version decoupling #2051
Conversation
Signed-off-by: Darshit Chanpura <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2051 +/- ##
==========================================
+ Coverage 69.34% 69.46% +0.11%
==========================================
Files 96 96
Lines 2587 2597 +10
Branches 375 386 +11
==========================================
+ Hits 1794 1804 +10
Misses 699 699
Partials 94 94 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Darshit Chanpura <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Signed-off-by: Darshit Chanpura <[email protected]>
addressed to unblock this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the yarn.lock need to be updated?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets take a look at the cypress failures for MDS to make sure there are no regressions prior to merging
Signed-off-by: Darshit Chanpura <[email protected]>
Signed-off-by: Darshit Chanpura <[email protected]>
c1e173c
Signed-off-by: Darshit Chanpura <[email protected]>
df825d7
Changes have been addressed. MDS cypress tests are no longer failing.
e9609ac
into
opensearch-project:main
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-2.x 2.x
# Navigate to the new working tree
cd .worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-2051-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 e9609acc76e7db541eb3701bd53369555a98517c
# Push it to GitHub
git push --set-upstream origin backport/backport-2051-to-2.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.x Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-2.16 2.16
# Navigate to the new working tree
cd .worktrees/backport-2.16
# Create a new branch
git switch --create backport/backport-2051-to-2.16
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 e9609acc76e7db541eb3701bd53369555a98517c
# Push it to GitHub
git push --set-upstream origin backport/backport-2051-to-2.16
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.16 Then, create a pull request where the |
…ct#2051) --------- Signed-off-by: Darshit Chanpura <[email protected]> (cherry picked from commit e9609ac)
…ct#2051) --------- Signed-off-by: Darshit Chanpura <[email protected]> (cherry picked from commit e9609ac)
--------- Signed-off-by: Darshit Chanpura <[email protected]> (cherry picked from commit e9609ac)
--------- Signed-off-by: Darshit Chanpura <[email protected]> (cherry picked from commit e9609ac)
Description
This change adds a datasource filter function to allow for version decoupling for MDS feature.
Category
Enhancement
Why these changes are required?
To allow for version decoupling in MDS.
What is the old behavior before changes and new behavior after changes?
Before: Datasources with all versions were shown.
After: Datasource with only compatible versions are shown.
Issues Resolved
Testing
Unit tests
Check List
- [ ] New functionality has been documentedBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.